home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 002a / fishex31.zip / PROLOG.ERR < prev    next >
Text File  |  1990-08-16  |  26KB  |  1,107 lines

  1. #
  2. ------------ RUNTIME ERRORS
  3. #
  4. 1001 Gstack overflow. Not enough memory or an endless loop.
  5. #
  6. 1002 Heap overflow. Not enough memory or an endless loop.
  7. #
  8. 1003 Requested block is too big (max 0xFFF0 bytes).
  9. Internal error which should not be caused by pure Prolog code.
  10. #
  11. 1004 Mismatch between freed blocks size and internal record.
  12. Internal error which should not be caused by pure Prolog code.
  13. #
  14. 1005 Attempt to release already released block.
  15. Internal error which should not be caused by pure Prolog code.
  16. #
  17. 1006 Heap signature overwritten
  18. Internal error which should not be caused by pure Prolog code.
  19. #
  20. 1007 Term too big.
  21. A term, including associated pointer data, cannot exceed 64K when
  22. entered into a database or sent across a message pipe.
  23. #
  24. 1008 Memory initialization failure.
  25. This indicates severe shortage of memory. The program is unable
  26. to start execution.
  27. #
  28. 1010 Stack overflow. Re-configure with Options if necessary.
  29. It may be a help to re-compile the program with the option
  30. 'check_determ' turned on in order to check that no unnecessary
  31. backtrack points are stacked, as these increase stack consumption
  32. quite considerably.
  33. #
  34. 1020 Trail overflow. Use trail=size to get more space.
  35. The trail is only used in connection with reference variables,
  36. where a free variable with input flowpattern is matched with
  37. a constant or another variable with input flowpattern.
  38.  
  39. However, the used part of the trail can only be recovered when a
  40. predicate fails and backtracks over the point where the trail was used.
  41. Therefore, if the problem persists in spite of increases in the trail
  42. size, it is necessary to change the execution sequence to avoid the
  43. excessive trail usage. This may often be the case if a top-level predicate
  44. uses infinite recursion ('run:- process, run.') rather than a repeat-fail
  45. combination.
  46.  
  47. It might also help to try to cut away unneeded backtrackpoints.
  48. #
  49. 1030 Arithmetic overflow in real operation.
  50. The range for reals is  -1.0e308 .. 1.0e308.
  51. #
  52. 1031 Arithmetic overflow in integer operation.
  53. The result cannot be stored in a 16-bit integer, which has a range
  54. of -32768 .. 32767.
  55. #
  56. 1032 Division by zero.
  57. #
  58. 1033 Negative values or 0 cannot be arguments to 'log' or 'ln'.
  59. #
  60. 1034 Negative values cannot be arguments to 'sqrt'.
  61. #
  62. 1040 Free variables are not allowed here.
  63. This message occurs when a variable from a reference domain is tried
  64. to be converted to a non reference domain, while the variable is free.
  65.  
  66. During automatic type conversion, as example from integer to real
  67. it is required that variables are bound.
  68.  
  69. 'assert', 'writef' and 'format' etc. requires that all variables are
  70. bound before the call. (Only 'write' will display a free variable as an
  71. underscore).
  72. #
  73. ------------ IO & OS errors
  74. #
  75. 1101 Attempt to open an already open file.
  76. Note that a symbolic file-name, declared with a file-domain,
  77. can only be used for one file at a time.
  78. #
  79. 1102 Attempt to assign input device to a file that is not in readmode.
  80. The file was opened in write-only mode.
  81. #
  82. 1103 Attempt to assign output device to a file that is not in writemode.
  83. The file was opened in read-only mode.
  84. #
  85. 1104 The file isn't open.
  86. #
  87. 1105 Illegal mode in filemode predicate, should be 0 or 1.
  88. '0' specifies Text mode, while '1' specifies Binary (raw) mode.
  89. #
  90. 1106 Invalid operation on device.
  91. #
  92. 1107 Eof can only be used during readmode.
  93. The file might be closed.
  94. #
  95. 1108 Illegal device or path.
  96. #
  97. 1109 Wrong number of arguments in the format string.
  98. #
  99. 1110 File too big, or not enough memory for file.
  100. #
  101. 1111 Wrong number of bytes read from file.
  102. This is either caused by a corrupt database or errors using the readblock
  103. predicate.
  104. #
  105. 1112 Not able to write correct number of bytes to file.
  106. This is probably caused by a full disk.
  107. #
  108. 1113 Invalid arguments to the 'date'-predicate.
  109. The arguments should be three integers in the order day, month, year.
  110. #
  111. 1114 Invalid arguments to the 'time'-predicate.
  112. The arguments should be four integers in the order
  113.   hours       0..24
  114.   minutes     0..59
  115.   seconds     0..59
  116.   hundredths  0..99
  117. #
  118. 1115 'unreadchar' failed because of full buffer (max 128 characters).
  119. #
  120. 1116 Failure in 'system' call.
  121. Either COMMAND.COM can not be found, or the indicated .EXE or .COM file
  122. can not be found.
  123. #
  124. 1117 Error executing external program.
  125. The external program might be too big to be executed from the
  126. Prolog system or it might be an illegal EXE-file, or it remained resident.
  127. Try to execute the external program from the DOS shell to see what happens.
  128. #
  129. 1118 Cannot access port(s).
  130. The port(s) cannot be reserved. Another program is probably using them.
  131. #
  132. 1133 Incorrect operating system version.
  133. The OS version doesn't have the support required by the attempted operation.
  134. #
  135. ----------------------- SCR & WD Error's
  136. #
  137. 1201 The arguments in 'makewindow' are illegal.
  138. Check that
  139.   - the window number is in the range 1 .. 127
  140.   - StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
  141.   - StartCol+NoOfCols <= no. of cols on screen (usually 80 or 120)
  142. #
  143. 1202 The cursor values are illegal.
  144. The Row and Column must be inside the actual window.
  145. #
  146. 1203 The window referred to does not exist.
  147. #
  148. 1205 Maximum number of windows exceeded. ( The maximum is 34. )
  149. #
  150. 1206 The arguments in 'resizewindow' are illegal.
  151. in resizewindow(StartRow,StartCol,NoOfRows,NoOfCols)
  152. Check that
  153.   - StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
  154.   - StartCol+NoOfCols <= no. of cols on screen (usually 80 or 132)
  155.   - Both StartRow and StartCol are positive.
  156. #
  157. 1207 Scroll predicate is not supported in graphic.
  158. #
  159. 1208 Not possible to set indicated textmode.
  160. #
  161. 1209 Operation not possible on system windows.
  162. #
  163. 1210 Illegal operation on a system window.
  164. #
  165. 1211 The window is compressed.
  166. #
  167. 1212 The window is expanded.
  168. #
  169. -------------------------- DB Error's
  170. #
  171. 1301 Overflow in Expanded Memory System.
  172. #
  173. 1302 The database is already open.
  174. A given database selector can only be opened once.
  175. #
  176. 1303 Invalid database file name.
  177. #
  178. 1304 The database isn't open.
  179. No database is currently associated with DB_SELECTOR.
  180. #
  181. 1305 The B+TREE isn't open.
  182. The B+TREE has been closed since the bt_selector was returned
  183. from bt_open or bt_create.
  184. #
  185. 1306 The B+TREE already exists.
  186. The names for the B+TREES in a single database must be unique,
  187. and a B+TREE with the indicated name already exists.
  188. #
  189. 1308 The database name already exists in the specified location.
  190. The names for databases placed in memory must be unique.
  191. #
  192. 1309 Error reopening the database during flush operation.
  193. 'db_flush' closes and opens the file in order to flush the DOS
  194. buffers; there is sadly no other way of guaranteeing that the
  195. buffers really are flushed on a DOS-system.
  196. When the database file is opened again, the same name as before
  197. is used.  This may cause problems if the database was opened in
  198. the current (default) directory and this has been changed since
  199. then, as 'db_flush' will have closed it in the old directory and
  200. tries to look for it in the new directory.
  201. #
  202. 1310 Invalid Order value; it must be between 1 and 255.
  203. #
  204. 1311 Invalid Key length.
  205. The key length must be between 1 and 255.
  206. However, it should be chosen as small as possible in order to
  207. save space.
  208. #
  209. 1313 Type conflict. The term in the database doesn't correspond with the domain.
  210. Database terms must be inserted and retrieved with variables belonging
  211. to the same domain.
  212. #
  213. 1314 Unable to create the indicated database.
  214. #
  215. 1315 Unable to open the indicated database in the given place.
  216. #
  217. 1316 No EMS installed.
  218. You can not use the option 'in_ems' in db_open and db_create if
  219. you have no EMS card installed.
  220. #
  221. 1317 Database marked as invalid.
  222. Whenever a database is closed, or flushed, it is totally consistent and
  223. marked as valid; this is reverted to invalid when it's contents are
  224. changed. If the computer crashes with an invalid database, it isn't
  225. subsequently safe to open and use it as if nothing has happened. In this
  226. case you must try to write a short recovery/copy program, opening the
  227. database with the 'openinvalid' predicate and copying the contents as far
  228. as they go to a new database.
  229. #
  230. 1318 Unable to delete database in the indicated place.
  231. #
  232. 1319 Invalid database reference number.
  233. You are probably using a database reference number for a term you have
  234. deleted, or you have maybe two open databases and are referring to the
  235. wrong database.
  236. #
  237. 1320 The chain does not exist in the database.
  238. #
  239. 1321 The named B+Tree does not exist in the database.
  240. #
  241. 1322 Invalid B+Tree selector for the given database.
  242. You are probably using a bt_selector for a B+Tree you have deleted, or
  243. you have maybe two open databases and are referring to the wrong database.
  244. #
  245. 1323 Can not delete an open index. (Close it first)
  246. #
  247. 1324 Key and ref not found in B+tree during key_delete.
  248. You either have a wrong combination of KEY and REF, or you are referring
  249. to a wrong B+Tree.
  250. #
  251. 1325 Term too big for conversion.
  252. A single term must not occupy more than 64K for insertion in databases or
  253. transmission on a message pipe.
  254. #
  255. 1326 Incorrect database system version.
  256. The database was not created with the same version of the database system
  257. as the one you are now using.
  258. #
  259. 1327 Not inside transaction.
  260. The database was opened in sharemode, so all predicates that access the
  261. database must be placed inside a transaction.
  262. #
  263. 1328 Write transaction not allowed when file opened in readonly.
  264. db_begintransaction was called with readwrite, but the database
  265. was opened as readonly.
  266. #
  267. 1330 Begintransaction made twice without endtransaction.
  268. After a call of db_begintransaction, db_endtransaction must be called
  269. to mark the end of the transaction before another call to db_begintransaction.
  270. #
  271. 1331 Update of the database not allowed in readonly mode.
  272. #
  273. 1332 Timeout in begintransaction
  274. After having tried RetryCount times with SleepPeriod intervals,
  275. db_begintransaction was unable to access the file.
  276. #
  277. -------------------------- Term Reader
  278. #
  279. 1401 Integer expected (during term reading).
  280. #
  281. 1402 Real number expected (during term reading).
  282. #
  283. 1403 Double quote expected (during term reading).
  284. #
  285. 1404 Single quote expected (during term reading).
  286. #
  287. 1405 List start expected (during term reading).
  288. #
  289. 1406 End of list expected (during term reading).
  290. #
  291. 1407 Functor not found in domain (during term reading).
  292. #
  293. 1408 '(' expected (during term reading).
  294. #
  295. 1409 ',' or ')' expected (during term reading).
  296. #
  297. -------------------------- Editor
  298. #
  299. 1501 Editor text buffer full.
  300. #
  301. -------------------------- String handling
  302. #
  303. 1601 String index error.
  304. A substring or subchar call with index values outside the string.
  305. #
  306. 1602 Result string cannot be bigger than 64K.
  307. #
  308. -------------------------- BGI
  309. #
  310. 1701 BGI graphics not installed.
  311. #
  312. 1702 Graphics hardware not detected.
  313. #
  314. 1703 Device driver file not found.
  315. #
  316. 1704 Invalid device driver file.
  317. #
  318. 1705 Not enough memory to load driver.
  319. #
  320. 1706 Out of memory in scan fill.
  321. #
  322. 1707 Out of memory in flood fill.
  323. #
  324. 1708 Font file not found.
  325. #
  326. 1709 Not enough memory to load font.
  327. #
  328. 1710 Invalid graphics mode for selected driver.
  329. #
  330. 1711 Graphics error.
  331. #
  332. 1712 Graphics I/O error.
  333. #
  334. 1713 Invalid font file.
  335. #
  336. 1714 Invalid font number.
  337. #
  338. 1715 Invalid device number.
  339. #
  340. 1750 Wrong list length in setfillpattern.
  341. #
  342. -------------------------- Message
  343. #
  344. 1801 Message queue memory allocation failure.
  345. The operating system was unable to access or allocate memory
  346. required by the message queue system.
  347. #
  348. 1802 The pipe is closed.
  349. The program at the other end of the pipe has closed it.
  350. #
  351. 1803 The pipe is broken.
  352. The pipe connection is lost and the other end didn't close the pipe normally.
  353. This may be caused by the program at the other end of the pipe terminating
  354. without closing the pipe, or a loss of connection somewhere in the operating
  355. system or, in the case of a networked pipe, a network error.
  356. #
  357. 1804 Cannot open pipe.
  358. The pipe doesn't exist.
  359. #
  360. 1805 Invalid pipe name.
  361. The name must begin with \pipe\ or \\computername\pipe
  362. #
  363. -------------------------- Directory browser
  364. #
  365. 1901 Too many files.
  366. #
  367. -------------------------- Configuration loading
  368. #
  369. 2001 Bad configuration file.
  370. #
  371. 2002 Error reading Configuration file.
  372. #
  373. -------------------------- Operating system errors
  374.                Note that many of these only apply to the OS2
  375.                version, and that for OS2 many of the messages
  376.                are not applicable. They are, however, included
  377.                for completeness.
  378. #
  379. 7001 Invalid function number
  380. #
  381. 7002 File not found
  382. #
  383. 7003 Path not found
  384. #
  385. 7004 Out of handles
  386. #
  387. 7005 Access denied
  388. #
  389. 7006 Invalid handle
  390. #
  391. 7007 Memory control blocks destroyed
  392. #
  393. 7008 Insufficient memory
  394. #
  395. 7009 Invalid memory block address
  396. #
  397. 7010 Invalid environment
  398. #
  399. 7011 Invalid format
  400. #
  401. 7012 Invalid access code
  402. #
  403. 7013 Invalid data
  404. #
  405. 7014 Unknown unit
  406. #
  407. 7015 Invalid disk drive
  408. #
  409. 7016 Cannot remove current directory
  410. #
  411. 7017 Not same device
  412. #
  413. 7018 No more files
  414. #
  415. 7019 Disk write-protected
  416. #
  417. 7020 Unknown unit
  418. #
  419. 7021 Drive not ready
  420. #
  421. 7022 Unknown command
  422. #
  423. 7023 Data error (CRC)
  424. #
  425. 7024 Bad request structure length
  426. #
  427. 7025 Seek error
  428. #
  429. 7026 Unknown type of medium
  430. #
  431. 7027 Sector not found
  432. #
  433. 7028 Printer out of paper
  434. #
  435. 7029 Write fault
  436. #
  437. 7030 Read fault
  438. #
  439. 7031 General failure
  440. #
  441. 7032 Sharing violation
  442. #
  443. 7033 Lock violation
  444. #
  445. 7034 Invalid disk change
  446. #
  447. 7035 FCB unavailable
  448. #
  449. 7036 Sharing buffer exceeded
  450. #
  451. 7050 Unsupported network request
  452. #
  453. 7051 Remote machine not listening
  454. #
  455. 7052 Duplicate name on network
  456. #
  457. 7053 Network name not found
  458. #
  459. 7054 Network busy
  460. #
  461. 7055 Device no longer exists on network
  462. #
  463. 7056 NetBIOS command limit exceeded
  464. #
  465. 7057 Error in network adapter hardware
  466. #
  467. 7058 Incorrect response from network
  468. #
  469. 7059 Unexpected network error
  470. #
  471. 7060 Remote adapter incompatible
  472. #
  473. 7061 Print queue full
  474. #
  475. 7062 Insufficient memory for print file
  476. #
  477. 7063 Print file canceled
  478. #
  479. 7064 Network name deleted
  480. #
  481. 7065 Network access denied
  482. #
  483. 7066 Incorrect network device type
  484. #
  485. 7067 Network name not found
  486. #
  487. 7068 Network limit exceeded
  488. #
  489. 7069 NetBIOS session limit exceeded
  490. #
  491. 7070 File sharing temporarily paused
  492. #
  493. 7071 Network request not accepted
  494. #
  495. 7072 Print or disk redirection paused
  496. #
  497. 7080 File already exists
  498. #
  499. 7082 Cannot make directory
  500. #
  501. 7083 Fail on Int 24H (critical error)
  502. #
  503. 7084 Too many redirections
  504. #
  505. 7085 Duplicate redirection
  506. #
  507. 7086 Invalid password
  508. #
  509. 7087 Invalid parameter
  510. #
  511. 7088 Network device fault
  512. #
  513. 7089 No process slots available
  514. #
  515. 7090 System error
  516. #
  517. 7091 Timer service table overflow
  518. #
  519. 7092 Timer service table duplicate
  520. #
  521. 7093 No limits to work on
  522. #
  523. 7095 Interupted system call
  524. #
  525. 7100 Open semaphore limit exceeded
  526. #
  527. 7101 Exclusive semaphore already owned
  528. #
  529. 7102 DosCloseSem Found semaphore set
  530. #
  531. 7103 Too many exclusive semaphore requests
  532. #
  533. 7104 Operation invalid at interrupt time
  534. #
  535. 7105 Semaphore owner terminated
  536. #
  537. 7106 Semaphore limit exceeded
  538. #
  539. 7107 Insert drive B disk into drive A
  540. #
  541. 7108 Drive locked by another process
  542. #
  543. 7109 Write on pipe with no reader
  544. #
  545. 7110 Open/create failed due to explicit fail command
  546. #
  547. 7111 Buffer too small
  548. #
  549. 7112 Disk is full
  550. #
  551. 7113 No more search handles
  552. #
  553. 7114 Invalid target handle for DosDupHandle
  554. #
  555. 7115 Bad user virtual address
  556. #
  557. 7116 Error on display write or keyboard read
  558. #
  559. 7117 Invalid DosDevIOCtl category
  560. #
  561. 7118 Invalid value for verify flag
  562. #
  563. 7119 Driver does not support DosDevIOCtl
  564. #
  565. 7120 Invalid function called
  566. #
  567. 7121 Timed out waiting for semaphore
  568. #
  569. 7122 Insufficient data in buffer
  570. #
  571. 7123 Invalid character or bad filename
  572. #
  573. 7124 Unimplemented information level
  574. #
  575. 7125 No volume label found
  576. #
  577. 7126 Invalid module handle
  578. #
  579. 7127 Procedure not found in module
  580. #
  581. 7128 No child processes found
  582. #
  583. 7129 Child processes still running
  584. #
  585. 7130 Invalid handle operation for direct disk access
  586. #
  587. 7131 Cannot seek to negative offset
  588. #
  589. 7132 Cannot seek on pipe or device
  590. #
  591. 7133 Drive has previously joined drives
  592. #
  593. 7134 Drive is already joined
  594. #
  595. 7135 Drive is already substituted
  596. #
  597. 7136 Drive is not joined
  598. #
  599. 7137 Drive is not substituted
  600. #
  601. 7138 Cannot join to joined drive
  602. #
  603. 7139 Cannot substitute to substituted drive
  604. #
  605. 7140 Cannot join to substituted
  606. #
  607. 7141 Cannot substitute to joined drive
  608. #
  609. 7142 Drive is busy
  610. #
  611. 7143 Cannot join or substitute drive to directory on same drive
  612. #
  613. 7144 Must be subdirectory of root
  614. #
  615. 7145 Joined directory must be empty
  616. #
  617. 7146 Path is already used in substitute
  618. #
  619. 7147 Path is already used in join
  620. #
  621. 7148 Path is being used by another process
  622. #
  623. 7149 Cannot join or substitute drive having directory that is target of previous substitute
  624. #
  625. 7150 System trace error
  626. #
  627. 7151 DosMuxSemWait errors
  628. #
  629. 7152 Systems limit on DosMuxSemWait calls exceeded
  630. #
  631. 7153 Invalid list format
  632. #
  633. 7154 Volume label too big
  634. #
  635. 7155 Cannot create another TCB
  636. #
  637. 7156 Signal refused
  638. #
  639. 7157 Segment is discarded
  640. #
  641. 7158 Segment was not locked
  642. #
  643. 7159 Bad tread ID address
  644. #
  645. 7160 Bad environment pointer
  646. #
  647. 7161 Bad pathname for DosExecPgm
  648. #
  649. 7162 Signal already pending
  650. #
  651. 7163 Unknown medium
  652. #
  653. 7164 No more threads available
  654. #
  655. 7165 Monitors not supported
  656. #
  657. 7180 Invalid segment number
  658. #
  659. 7181 Invalid call gate
  660. #
  661. 7182 Invalid ordinal
  662. #
  663. 7183 Shared segment or system semaphore already exists
  664. #
  665. 7184 No child process running
  666. #
  667. 7185 Child process is still alive
  668. #
  669. 7186 Invalid flag number
  670. #
  671. 7187 semaphore does not exist
  672. #
  673. 7188 Invalid stating code segment
  674. #
  675. 7189 Invalid stack segment
  676. #
  677. 7190 Invalid module type
  678. #
  679. 7191 Wrong EXE file header
  680. #
  681. 7192 Invalid EXE file,LINK errors
  682. #
  683. 7193 Invalid EXE format
  684. #
  685. 7194 Iterated data exceeds 64 KB
  686. #
  687. 7195 Invalid minimum allocation size
  688. #
  689. 7196 Invalid dynamic link from ring 2 segment
  690. #
  691. 7197 IOPL not enabled in CONFIG.SYS
  692. #
  693. 7198 Invalid segment descriptor privilege limit
  694. #
  695. 7199 Automatic data segment exceeds 64 KB
  696. #
  697. 7200 Ring 2 segment must be movable
  698. #
  699. 7201 Relocation chain exceeds segment limit
  700. #
  701. 7202 Infinite loop in relocation chain
  702. #
  703. 7203 Environment variable not found
  704. #
  705. 7204 Not current country
  706. #
  707. 7205 NO process whit handler to receive signal
  708. #
  709. 7206 Filename or extension too long
  710. #
  711. 7207 Ring too stack in use
  712. #
  713. 7208 Meta expansin too long
  714. #
  715. 7209 Invalid signal number
  716. #
  717. 7210 Inactive thread
  718. #
  719. 7211 File system information not available
  720. #
  721. 7212 Locked error
  722. #
  723. 7213 Bad dynamic link
  724. #
  725. 7214 Too many modules
  726. #
  727. 7215 Nesting not allowed
  728. #
  729. 7216 Cannot shrink ring 2 stack
  730. #
  731. 7230 Nonexistent pipe or invalid operation
  732. #
  733. 7231 Specified pipe is busy
  734. #
  735. 7232 No data on nonblocking pipe read
  736. #
  737. 7233 Pipe disconnected by server
  738. #
  739. 7234 Additional data is available
  740. #
  741. 7240 Network session was canceled
  742. #
  743. 7262 Stack too large
  744. #
  745. 7303 Invalid process ID
  746. #
  747. 7304 Invalid priority level increment
  748. #
  749. 7305 Not a descendant process
  750. #
  751. 7306 Requestor not Task Manager
  752. #
  753. 7307 Invalid priority class
  754. #
  755. 7308 Invalid scope
  756. #
  757. 7309 Invalid thread ID
  758. #
  759. 7310 Cannot shrink DosSubSet segment
  760. #
  761. 7311 Out of memory(DosSubAlloc)
  762. #
  763. 7312 Invalid block specified(DosSubFree)
  764. #
  765. 7313 Bad size parameter
  766. #
  767. 7314 Bad flag parameter(DosSubSet)
  768. #
  769. 7315 Invalid segment selector
  770. #
  771. 7316 Message too long for buffer
  772. #
  773. 7317 Message ID number not found
  774. #
  775. 7318 Unable to access message file
  776. #
  777. 7319 Invalid message file format
  778. #
  779. 7320 Invalid insertion variable count
  780. #
  781. 7321 Unable to perform function
  782. #
  783. 7322 Unable to wake up
  784. #
  785. 7323 Invalid semaphore handle
  786. #
  787. 7324 No timers available
  788. #
  789. 7326 Invalid timer handle
  790. #
  791. 7327 Date or time invalid
  792. #
  793. 7328 Internal system error
  794. #
  795. 7329 Current queue name does not exist
  796. #
  797. 7330 Current process is not queue owner
  798. #
  799. 7331 Current process owns queue
  800. #
  801. 7332 Duplicate queue name
  802. #
  803. 7333 Queue record does not exist
  804. #
  805. 7334 Inadequate queue memory
  806. #
  807. 7335 Invalid queue name
  808. #
  809. 7336 Invalid queue priority parameter
  810. #
  811. 7337 Invalid queue handle
  812. #
  813. 7338 Queue link not found
  814. #
  815. 7339 Queue memory error
  816. #
  817. 7340 Previous queue record was at end of queue
  818. #
  819. 7341 Process does not have access to queue
  820. #
  821. 7342 Queue is empty
  822. #
  823. 7343 Queue name does not exist
  824. #
  825. 7344 Queues not initialized
  826. #
  827. 7345 Unable to access queues
  828. #
  829. 7346 Unable to add new queue
  830. #
  831. 7347 Unable to initialize queues
  832. #
  833. 7349 Invalid Vio function replaced
  834. #
  835. 7350 Invalid pointer to parameter
  836. #
  837. 7355 Unsupported screen mode
  838. #
  839. 7356 Invalid cursor width value
  840. #
  841. 7358 Invalid row value
  842. #
  843. 7359 Invalid column value
  844. #
  845. 7366 Invalid wait flag setting
  846. #
  847. 7367 Screen not previously locked
  848. #
  849. 7369 Invalid session ID
  850. #
  851. 7370 No session available
  852. #
  853. 7371 Session not found
  854. #
  855. 7372 Title cannot be changed
  856. #
  857. 7373 Invalid parameter(Kbd)
  858. #
  859. 7375 Invalid wait parameter
  860. #
  861. 7376 Invalid length for keyboard
  862. #
  863. 7377 Invalid echo mode mask
  864. #
  865. 7378 Invalid input mode mask
  866. #
  867. 7379 Invalid monitor parameters
  868. #
  869. 7380 Invalid device name string
  870. #
  871. 7381 Invalid device handle
  872. #
  873. 7382 Buffer too small
  874. #
  875. 7383 Buffer empty
  876. #
  877. 7384 Data record too large
  878. #
  879. 7386 Mouse handle invalid or closed
  880. #
  881. 7389 Invalid display mode parameters
  882. #
  883. 7391 Invalid entry point
  884. #
  885. 7392 Invalid function mask
  886. #
  887. 7394 Pointer drawn
  888. #
  889. 7395 Invalid frequency for DosBeep
  890. #
  891. 7396 Cannot find COUNTRY.SYS file
  892. #
  893. 7397 Cannot open COUNTRY.SYS file
  894. #
  895. 7398 Country code not found
  896. #
  897. 7399 Information truncated to fit buffer
  898. #
  899. 7400 Selected type does not exist
  900. #
  901. 7401 Selected type not in file
  902. #
  903. 7402 Vio function for Task Manager only
  904. #
  905. 7403 Invalid string length(Vio)
  906. #
  907. 7404 VioDeRegister not allowed
  908. #
  909. 7405 Popup screen not allocated
  910. #
  911. 7406 Pop-up already on screen
  912. #
  913. 7407 Kdb function for Task Manager only
  914. #
  915. 7408 Invalid ASCIIZ string length(Kdb)
  916. #
  917. 7409 Invalid function replacement mask
  918. #
  919. 7410 KbdRegister not allowed
  920. #
  921. 7411 KbdDeRegister not allowed
  922. #
  923. 7412 Mou function for Task Manager only
  924. #
  925. 7413 Invalid ASCIIZ string length(Mou)
  926. #
  927. 7414 Invalid replacement mask
  928. #
  929. 7415 MouRegister not allowed
  930. #
  931. 7416 MouDeRegister not allowed
  932. #
  933. 7417 Invalid action specified
  934. #
  935. 7418 INIT called more than one
  936. #
  937. 7419 Screen group number not found
  938. #
  939. 7420 Caller is not shell
  940. #
  941. 7421 Invalid parameter(Vio)
  942. #
  943. 7422 Save/restore already owned
  944. #
  945. 7423 Thread unblocked by VioModeUndo or VioSavRedrawUndo
  946. #
  947. 7425 Caller not Task Manager
  948. #
  949. 7426 VioRegister Not allowed
  950. #
  951. 7427 No VioModeWait thread exists
  952. #
  953. 7428 No VioSavRedrawWait thread exists
  954. #
  955. 7429 Function invalid in background
  956. #
  957. 7430 Function not allowed during pop-up
  958. #
  959. 7431 Caller is not the base shell
  960. #
  961. 7432 Invalid status requested
  962. #
  963. 7433 No-wait parameter out of bounds
  964. #
  965. 7434 Cannot lock screen
  966. #
  967. 7435 Invalid wait parameter
  968. #
  969. 7436 Invalid Vio handle
  970. #
  971. 7438 Invalid length for Vio function
  972. #
  973. 7439 Invalid Kdb handle
  974. #
  975. 7440 Out of Kbd handles
  976. #
  977. 7441 Cannot create logical Keyboard
  978. #
  979. 7442 Code page load failed
  980. #
  981. 7443 Invalid code page ID
  982. #
  983. 7445 Keyboard focus required
  984. #
  985. 7446 Caller already has focus
  986. #
  987. 7447 Keyboard subsystem is busy
  988. #
  989. 7448 Invalid code page
  990. #
  991. 7449 Cannot get keyboard focus
  992. #
  993. 7450 Session is not selectable
  994. #
  995. 7451 Parent/child session not in foreground
  996. #
  997. 7452 Not parent of specified child
  998. #
  999. 7453 Invalid session start mode
  1000. #
  1001. 7454 Invalid session start option
  1002. #
  1003. 7455 Invalid session bonding option
  1004. #
  1005. 7456 Invalid session select option
  1006. #
  1007. 7457 Session started in background
  1008. #
  1009. 7458 Invalid session stop option
  1010. #
  1011. 7459 Reserved parameter not 0
  1012. #
  1013. 7460 Session parent process already exists
  1014. #
  1015. 7461 Invalid data length
  1016. #
  1017. 7462 Parent session not bound
  1018. #
  1019. 7463 Retry request block allocation
  1020. #
  1021. 7464 Unavailable for detached process(Kbd)
  1022. #
  1023. 7465 Unavailable for detached process(Vio)
  1024. #
  1025. 7466 Unavailable for detached process(Mou)
  1026. #
  1027. 7467 No font available to support mode
  1028. #
  1029. 7468 User font active
  1030. #
  1031. 7469 Invalid code page specified
  1032. #
  1033. 7470 System displays do not support code page
  1034. #
  1035. 7471 Current display does not support code page
  1036. #
  1037. 7472 Invalid code page
  1038. #
  1039. 7473 Code page list is too small
  1040. #
  1041. 7474 Code page not moved
  1042. #
  1043. 7475 Mode switch initialization error
  1044. #
  1045. 7476 Code page not found
  1046. #
  1047. 7477 Internal error
  1048. #
  1049. 7478 Invalid session start trace indicator
  1050. #
  1051. 7479 Vio internal Resource error
  1052. #
  1053. 7480 Vio shell initialization error
  1054. #
  1055. 7481 No Task Manager hard errors
  1056. #
  1057. 7482 DosSetCp unable to set display or keyboard code page
  1058. #
  1059. 7483 Error during Vio pop-up
  1060. #
  1061. 7484 Critical section overflow
  1062. #
  1063. 7485 Critical section underflow
  1064. #
  1065. 7486 Reserved parameter is not 0
  1066. #
  1067. 7487 Bad physical address
  1068. #
  1069. 7488 No selectors requested
  1070. #
  1071. 7489 Not enough GDT selectors available
  1072. #
  1073. 7490 Not a GDT selector
  1074. #
  1075. 7491 Invalid program type
  1076. #
  1077. 7492 Invalid program control
  1078. #
  1079. 7493 Invalid program inheritance option
  1080. #
  1081. 7494 Vio function not allowed in PM window
  1082. #
  1083. 7495 Function not supported in non PM screen group
  1084. #
  1085. 7496 Vio shield already owned
  1086. #
  1087. 7497 Vio handle exhausted
  1088. #
  1089. 7498 Vio error occured, details sent to error log
  1090. #
  1091. 7499 Invalid display context
  1092. #
  1093. 7500 Kbd input not available
  1094. #
  1095. 7501 Mou input not available
  1096. #
  1097. 7502 Invalid mouse handle
  1098. #
  1099. 7503 Invalid debugging parameters
  1100. #
  1101. 7504 Kbd function not allowed in PM window
  1102. #
  1103. 7505 Mou function not allowed in PM window
  1104. #
  1105. 7506 Invalid icon file
  1106. #
  1107.